From 9f7602fd7280438eaf9379b432ef044dd4209bf0 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 26 May 1993 22:19:04 +0000 Subject: [PATCH] * make-dist: Check for .elc files with no corresponding .el file. * make-dist: Check for .elc files with no corresponding .el file. --- make-dist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/make-dist b/make-dist index ac2bd91b0f1..f0c8805bc83 100755 --- a/make-dist +++ b/make-dist @@ -87,6 +87,11 @@ them, and try again." >&2 exit 1 fi +### Check for .elc files with no corresponding .el file. +ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el +ls -1 lisp/*.elc > /tmp/elc +comm -13 /tmp/el /tmp/elc + echo "Creating staging directory: \`${tempparent}'" mkdir ${tempparent} emacsname="emacs-${version}${new_extension}" -- 2.30.2